Dear Statalisters,
I am currently working on static panel data with a predetermined independent variable (x1). Accordingly, a basic model in xtabond2 would look like this:
Diff-GMM
Sys-GMM
Now, I would like to go more into details and understand especially the equation() option. The equation() suboption specifies which equation(s) should use the instruments: first-difference only (equation(diff)), levels only (equation(level)), or both (equation(both)), the default. Also by default, the instruments are transformed for use in the transformed equation and entered untransformed for the levels equation. The suboption passthru prevents this transformation.
What are the arguments and reasons to choose which equation uses the instruments? --> equation({diff | level | both}) passthru
Best regards
Olaf
I am currently working on static panel data with a predetermined independent variable (x1). Accordingly, a basic model in xtabond2 would look like this:
Diff-GMM
Code:
xtabond2 y x1 x2 x3 i.year, gmm(x1, collapse) iv(x2 x3 i.year) noleveleq
Code:
xtabond2 y x1 x2 x3 i.year, gmm(x1, collapse) iv(x2 x3 i.year)
What are the arguments and reasons to choose which equation uses the instruments? --> equation({diff | level | both}) passthru
Best regards
Olaf
Comment